home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.MDIForm MDI_Parent
- BackColor = &H8000000C&
- Caption = "WorkBookOCX Sample"
- ClientHeight = 6600
- ClientLeft = 90
- ClientTop = 660
- ClientWidth = 8595
- LinkTopic = "MDIForm1"
- StartUpPosition = 2 'CenterScreen
- Begin VB.Menu mnu_File
- Caption = "&File"
- Begin VB.Menu mnu_new
- Caption = "&New WorkBook"
- Shortcut = ^N
- End
- End
- Attribute VB_Name = "MDI_Parent"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub MDIForm_Load()
- mnu_new_Click
- End Sub
- Private Sub mnu_new_Click()
- Dim fx As New Form1
- Set fx = New Form1
- Load fx
- fx.Show
- End Sub
-